CRPEReportSummaryInfo
This structure provides report summary information such as the report title, author, and comments. It corresponds to the report summary information in the Crystal Reports Designer. This structure is used by CRPEJob::GetReportSummaryInfo, to get information about a specific parameter field and by CRPEJob::SetReportSummaryInfo, to change a specific parameter field.
Data Members
- Each data member is set by the corresponding constructor parameter unless otherwise noted.
- The default value for each data member is '\0', except as noted.
m_applicationName
| _TCHAR
| Specifies an application name (of size PEP_SI_APPLICATION_NAME_LEN = 128) for the application using this report.
|
m_title
| _TCHAR
| Specifies the title (of size PEP_SI_TITLE_LEN = 128) of the current report.
|
m_subject
| _TCHAR
| Specifies the subject (of size PEP_SI_SUBJECT_LEN = 128) of the current report.
|
m_author
| _TCHAR
| Specifies the author (of size PEP_SI_AUTHOR_LEN = 128) of the current report.
|
m_keywords
| _TCHAR
| Specifies the keywords (of size PEP_SI_KEYWORDS_LEN = 128) included for the current report.
|
m_comments
| _TCHAR
| Specifies any comments (of size PEP_SI_COMMENTS_LEN = 512) for the current report.
|
m_reportTemplate
| _TCHAR
| Specifies the report template (of size PEP_SI_REPORT_TEMPLATE_LEN = 128) for the current report.
|
m_savePreview Picture
| short
| Specifies whether or not to save the Preview Picture. Default value = 0.
|
Constructor CRPEReportSummaryInfo:: CRPEReportSummaryInfo
This constructs a CRPEReportSummaryInfo structure object. Call the constructor with no parameters to allow the Class Library to initialize all member variables with default values. Pass parameters to the constructor to assign specific values to each member variable.
Constructor Syntax (Default)
CRPEReportSummaryInfo ();
Constructor Syntax
CRPEReportSummaryInfo (
_TCHAR *applicationName,
_TCHAR *title,
_TCHAR *subject,
_TCHAR *author,
_TCHAR *keywords,
_TCHAR *comments,
_TCHAR *reportTemplate,
short savePreviewPicture );